JavaScript

{dialog.object}panelGetActive Method

Syntax

{dialog.object}.panelGetActive([UXPanelContainerName]);

Arguments

UXPanelContainerName

Optional. The ID of a Panel container (Panel Navigator or Panel Layout) to get the active Panel from.

Description

Gets the name of the active Panel.

Discussion

You can optionally specify the name of a Panel container (Panel Navigator or Panel Layout.) If the Panel container name is specified, {dialog.object}.panelGetActive will return the active panel in the specified container.

Example

var panel = {dialog.object}.panelGetActive();
//get active panel in Panel Navigator 'PNAV1';
var panel = {dialog.object}.panelGetActive('PNAV1');

See Also